build: update packages (CommunityToolkit.Mvvm, OpenAI, LiveChartsCore)#2242
Merged
love-linger merged 1 commit intosourcegit-scm:developfrom Apr 8, 2026
Merged
build: update packages (CommunityToolkit.Mvvm, OpenAI, LiveChartsCore)#2242love-linger merged 1 commit intosourcegit-scm:developfrom
love-linger merged 1 commit intosourcegit-scm:developfrom
Conversation
AquariusStar
added a commit
to AquariusStar/sourcegit
that referenced
this pull request
Apr 12, 2026
commit 13e2597 Author: leo <longshuang@msn.cn> Date: Thu Apr 9 16:33:44 2026 +0800 enhance: avoid pre-edit text box being clipped Signed-off-by: leo <longshuang@msn.cn> commit bfdd73d Author: leo <longshuang@msn.cn> Date: Thu Apr 9 14:16:08 2026 +0800 feature: auto-fetch now is a global setting instead of per-repo setting (sourcegit-scm#2050) Signed-off-by: leo <longshuang@msn.cn> commit 42734b9 Author: leo <longshuang@msn.cn> Date: Thu Apr 9 11:36:05 2026 +0800 fix: staged files do not update after committing with `--amend` enabled successfully (sourcegit-scm#2253) This issue is introduced by commit 26fc29b. And the right way to fix this issue is to force `Command.Commit` finish in UI thread. Signed-off-by: leo <longshuang@msn.cn> commit a3c0b22 Author: Shun-ichi Goto <shunichi.goto@gmail.com> Date: Wed Apr 8 15:46:10 2026 +0900 feature: better word division for highlighting (sourcegit-scm#2251) Each line is divided into several chunks to highlight the changes. The previous implementation splits text at a fixed set of delimiter characters (spaces, tabs, and common ASCII symbols such as `+-*/=!,;`). Non-delimiter characters — including CJK ideographs, Hiragana, and Katakana — are never treated as boundaries, so they tend to form large, coarse chunks in languages like Japanese or Chinese that do not use spaces to separate words. A small change within such text causes the entire surrounding phrase to be highlighted. This new implementation classifies each character into one of three categories and groups consecutive characters of the same category into one chunk, except for the Other category which is always split character by character: - Letter (Unicode Ll/Lu/Lt/Lm + digits): ASCII letters, digits, and letters with diacritics such as é, ü, ß, ñ, ё. Consecutive Letter characters form one chunk, keeping European words intact. - OtherLetter (Unicode Lo): CJK, Hiragana, Katakana, Hangul, Thai, Arabic, Hebrew, etc. Consecutive OtherLetter characters form one chunk. CJK punctuation (。、「」…) falls into the Other category and therefore acts as a natural boundary between chunks. - Other (default): whitespace, control characters, punctuation, and symbols. This category corresponds to the delimiter characters of the previous implementation. Each character is always its own chunk, preserving the same per-character precision as before for operators, spaces, and punctuation. Category values for all 65,536 char values are pre-computed into a static read-only array at startup for lock-free O(1) lookup. commit 6fc741c Author: leo <longshuang@msn.cn> Date: Wed Apr 8 14:29:35 2026 +0800 doc: update third-party readme Signed-off-by: leo <longshuang@msn.cn> commit 63e13a5 Author: heartacker <1876302+heartacker@users.noreply.github.com> Date: Wed Apr 8 14:27:59 2026 +0800 build: update packages (CommunityToolkit.Mvvm, OpenAI, LiveChartsCore) (sourcegit-scm#2242) commit 2581f24 Author: leo <longshuang@msn.cn> Date: Wed Apr 8 14:19:28 2026 +0800 code_style: remove unused namespace using Signed-off-by: leo <longshuang@msn.cn> commit 255138f Author: leo <longshuang@msn.cn> Date: Wed Apr 8 10:27:36 2026 +0800 refactor: use `DirectoryInfo` to get absolute path of repository (sourcegit-scm#2246) Signed-off-by: leo <longshuang@msn.cn> commit 03bfa29 Author: Shun-ichi Goto <shunichi.goto@gmail.com> Date: Wed Apr 8 11:19:41 2026 +0900 feature: allow editing of repository name via tab context menu (sourcegit-scm#2250) * feature: allow editing of repository name via context menu of repository tab Now we can edit tab name while seeing repository view. This is a same feature of 'Edit' action for repository path in welcome view. Add text resource "Text.PageTabBar.Tab.Edit" and its translations are copied from "Text.Welcome.Edit". Note: The feature of changing bookmark is duplicated in a sub menu and the edit dialog. * refactor: remove duplicated menu action 'Bookmark' Remove the 'Bookmark' sub-menu action because 'Edit' action contains it. The text resource "PageTabBar.Tab.Bookmark" and its translations are also removed. commit d2aa966 Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Date: Tue Apr 7 05:57:00 2026 +0000 doc: Update translation status and sort locale files commit 834cc0c Author: Javier J. Martínez M. <56406225+jjesus-dev@users.noreply.github.com> Date: Mon Apr 6 23:56:49 2026 -0600 localization: update Spanish translation (sourcegit-scm#2244) + Add missing strings. commit f8b91ec Author: leo <longshuang@msn.cn> Date: Tue Apr 7 10:53:39 2026 +0800 enhance: use `string.Equals` instead of operator `==` Signed-off-by: leo <longshuang@msn.cn> commit 3bf2da2 Author: leo <longshuang@msn.cn> Date: Tue Apr 7 10:42:06 2026 +0800 enhance: auto-select the new HEAD after reword (sourcegit-scm#2236) Signed-off-by: leo <longshuang@msn.cn> commit 488e64d Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Date: Tue Apr 7 02:29:03 2026 +0000 doc: Update translation status and sort locale files commit ba997ed Author: AquariusStar <48148723+AquariusStar@users.noreply.github.com> Date: Tue Apr 7 05:28:54 2026 +0300 localization: update Russian translate (sourcegit-scm#2240)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.